home *** CD-ROM | disk | FTP | other *** search
- property whichFrame
-
- on new me
- return me
- end
-
- on getPropertyDescriptionList me
- description = [:]
- addProp(description, #whichFrame, [#default: "none", #format: #string, #comment: "The frame-label to go to:"])
- return description
- end
-
- on getBehaviorDescription me
- return "Goes to the framelabel defined by #whichFrame"
- end
-
- on mouseUp me
- if whichFrame <> "none" then
- go(whichFrame)
- end if
- end
-